home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / dev / ds3100.md / console.h < prev    next >
C/C++ Source or Header  |  1992-12-18  |  987b  |  35 lines

  1. /*
  2.  * console.h --
  3.  *
  4.  *    Declarations for things exported by devConsole.c to the rest
  5.  *    of the device module.
  6.  *
  7.  * Copyright 1989 Regents of the University of California
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  *
  16.  * $Header: /cdrom/src/kernel/Cvsroot/kernel/dev/ds3100.md/console.h,v 9.0 89/09/12 15:02:24 douglis Stable $ SPRITE (Berkeley)
  17.  */
  18.  
  19. #ifndef _DEVCONSOLE
  20. #define _DEVCONSOLE
  21.  
  22. #include "dc7085.h"
  23.  
  24. extern int    DevConsoleRawProc();
  25.  
  26. extern Boolean    devDivertXInput;
  27.  
  28. /*
  29.  * Maximum interval allowed between hitting the console cmd key and hitting the
  30.  * command key.
  31.  */
  32. #define CONSOLE_CMD_INTERVAL    2
  33.  
  34. #endif /* _DEVCONSOLE */
  35.